ComponentOne Data Source for Entity Framework
C1.LiveLinq.Indexing.Search Namespace / GroupingQuery<T> Class
The type of the elements of the indexed collection.
Members

In This Topic
    GroupingQuery<T> Class
    In This Topic
    Represents a collection of IndexedGroup<T>, groups of elements with the same key, resulting from a search operation with grouping. This class has a derived class GroupingQuery<TKey,T> with specific type of the key used for the index search.
    Object Model
    GroupingQuery<T> Class
    Syntax
    'Declaration
     
    
    Public MustInherit Class GroupingQuery(Of T) 
    public abstract class GroupingQuery<T> 
    Type Parameters
    T
    The type of the elements of the indexed collection.
    Remarks
    The result of any index search operation, IndexQuery<T> can be grouped by applying IndexQuery<T>.GroupByUntypedKey. It is grouped by the key that was used to perform the search operation. For example, customers.Indexes(c => c.City).All().GroupByUntypedKey(); customers.Indexes(c => c.City).FindBetween("A", "Z").GroupByUntypedKey();
    Inheritance Hierarchy

    System.Object
       C1.LiveLinq.Indexing.Search.GroupingQuery<T>

    See Also